type crypto/sha512.digest

22 uses

	crypto/sha512 (current package)
		sha512.go#L83: type digest struct {
		sha512.go#L91: func (d *digest) Reset() {
		sha512.go#L142: func (d *digest) MarshalBinary() ([]byte, error) {
		sha512.go#L170: func (d *digest) UnmarshalBinary(b []byte) error {
		sha512.go#L212: 	d := &digest{function: crypto.SHA512}
		sha512.go#L219: 	d := &digest{function: crypto.SHA512_224}
		sha512.go#L226: 	d := &digest{function: crypto.SHA512_256}
		sha512.go#L236: 	d := &digest{function: crypto.SHA384}
		sha512.go#L241: func (d *digest) Size() int {
		sha512.go#L254: func (d *digest) BlockSize() int { return BlockSize }
		sha512.go#L256: func (d *digest) Write(p []byte) (nn int, err error) {
		sha512.go#L282: func (d *digest) Sum(in []byte) []byte {
		sha512.go#L287: 	d0 := new(digest)
		sha512.go#L302: func (d *digest) checkSum() [Size]byte {
		sha512.go#L347: 	d := digest{function: crypto.SHA512}
		sha512.go#L358: 	d := digest{function: crypto.SHA384}
		sha512.go#L368: 	d := digest{function: crypto.SHA512_224}
		sha512.go#L378: 	d := digest{function: crypto.SHA512_256}
		sha512block.go#L96: func blockGeneric(dig *digest, p []byte) {
		sha512block_amd64.go#L12: func blockAVX2(dig *digest, p []byte)
		sha512block_amd64.go#L15: func blockAMD64(dig *digest, p []byte)
		sha512block_amd64.go#L19: func block(dig *digest, p []byte) {